@charset "utf-8";

/* ===================================================================
@set browser style:清除浏览器默认样式
 ================================= */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
dl,
dt,
dd,
ul,
ol,
li,
form,
fieldset,
legend,
button,
input,
textdevision,
select,
table,
tr,
th,
td,
pre,
sup,
address,
cite,
dfn,
em,
var,
blockquote {
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  border: none;
  height: 100%;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

img {
  border: none;
}

ul,
ol,
li {
  list-style-type: none;
}

button,
input,
select,
textdevision {
  font: 12px/1.5em tohoma, arial, simsun, sans-serif;
  outline: none;
}

button,
input,
select {
  vertical-align: middle;
}

button,
submit {
  cursor: pointer;
}

textdevision {
  resize: none;
}

table {
  border-collapse: separate;
  table-layout: fixed;
  word-wrap: break-word;
}

div {
  word-wrap: break-word;
}

a:link,
a:visited {
  text-decoration: none;
  outline: none;
}

a:hover,
a:active {
  text-decoration: underline;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

/* 设置滚动条的样式 */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 上下按钮 */
*::-webkit-scrollbar-button {
  display: none;
}

/* 外层轨道 */
*::-webkit-scrollbar-track {
  border: 1px solid #fff;
}

/*内层滚动槽*/
*::-webkit-scrollbar-track-piece {
  background: none;
}

/* 滚动条滑块 */
*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #e1e1e1;
  border: 1px solid #fff;
}

*::-webkit-scrollbar-thumb:window-inactive {
  background: #e1e1e1;
  border: 1px solid #fff;
}

*::-webkit-scrollbar-thumb:hover {
  background: #e1e1e1;
  border: 1px solid #fff;
}

/* ========================================================================
@ 设置全站样式
* ============================  */
body,
input,
button {
  color: #666666;
  font-size: 14px;
  font-family: "Microsoft YaHei", "Myriad Set Pro", "HanHei SC", "PingFang SC",
    STHeitiSC-Light, "Helvetica Neue", Helvetica, "WenQuanYi Micro Hei", Arial,
    sans-serif !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  margin: 0;
  word-wrap: break-word;
  height: 100%;
}

body {
  min-width: 1280px;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #666666;
  text-decoration: none;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes num-init {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 -486px;
  }
}

@keyframes num-init-even {
  from {
    background-position: 0 -486px;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* 首页地图上的点闪烁 */
@keyframes mapFlash {
  from,
  to {
    opacity: 0;
  }

  15% {
    opacity: 0.3;
  }

  30% {
    opacity: 0.5;
  }

  50%,
  70% {
    opacity: 1;
  }
}

.mapFlash {
  -webkit-animation-name: mapFlash;
  animation-name: mapFlash;
}

/* 弹性计算部分上面的箭头逆时针转动 */
@keyframes upArrowRotate {
  from {
    -webkit-transform-origin: 148px 160px;
    transform-origin: 148px 160px;
    -webkit-transform: rotate3d(0, 0, 1, 130deg);
    transform: rotate3d(0, 0, 1, 130deg);
  }

  to {
    -webkit-transform-origin: 148px 160px;
    transform-origin: 148px 160px;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.upArrowRotate {
  -webkit-animation-name: upArrowRotate;
  animation-name: upArrowRotate;
}

/* 弹性计算部分下面的箭头逆时针转动 */
@keyframes downArrowRotate {
  from {
    -webkit-transform-origin: 148px -61px;
    transform-origin: 148px -61px;
    -webkit-transform: rotate3d(0, 0, 1, 120deg);
    transform: rotate3d(0, 0, 1, 120deg);
  }

  to {
    -webkit-transform-origin: 148px -61px;
    transform-origin: 148px -61px;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.downArrowRotate {
  -webkit-animation-name: downArrowRotate;
  animation-name: downArrowRotate;
}

/*index箭头指示引导*/
@keyframes move-up-to-down {
  0%,
  30% {
    opacity: 0;
    transform: translate(0, -5px);
  }

  60% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(0, 8px);
  }
}

/*section箭头指示引导*/
@keyframes move-left-to-right {
  0%,
  30% {
    opacity: 0;
    transform: translate(-5px, 0);
  }

  60% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(5px, 0);
  }
}

@keyframes animation-aliyun {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 150px);
  }
}

@keyframes animation-ucloud {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 220px);
  }
}

@keyframes animation-amazon {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 102px);
  }
}

@keyframes animation-azure {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 205px);
  }
}

@keyframes animation-qcloud {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 96px);
  }
}

/*屏幕宽度在1280及以下的动画效果*/
@media screen and (max-width: 1280px) {
  @keyframes num-init {
    from {
      background-position-y: 0;
    }

    to {
      background-position-y: -360px;
    }
  }

  @keyframes num-init-even {
    from {
      background-position-y: -360px;
    }

    to {
      background-position-y: 0;
    }
  }

  /* 弹性计算部分上面的箭头逆时针转动 */
  @keyframes upArrowRotate {
    from {
      -webkit-transform-origin: 123px 114px;
      transform-origin: 123px 114px;
      -webkit-transform: rotate3d(0, 0, 1, 130deg);
      transform: rotate3d(0, 0, 1, 130deg);
    }

    to {
      -webkit-transform-origin: 123px 114px;
      transform-origin: 123px 114px;
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
      transform: rotate3d(0, 0, 1, 0deg);
    }
  }

  /* 弹性计算部分下面的箭头逆时针转动 */
  @keyframes downArrowRotate {
    from {
      -webkit-transform-origin: 123px -52px;
      transform-origin: 123px -52px;
      -webkit-transform: rotate3d(0, 0, 1, 120deg);
      transform: rotate3d(0, 0, 1, 120deg);
    }

    to {
      -webkit-transform-origin: 123px -52px;
      transform-origin: 123px -52px;
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
      transform: rotate3d(0, 0, 1, 0deg);
    }
  }

  /*index箭头指示引导*/
  @keyframes move-up-to-down {
    0%,
    30% {
      opacity: 0;
      transform: translate(0, -5px);
    }

    60% {
      opacity: 1;
      transform: translate(0, 0);
    }

    100% {
      opacity: 0;
      transform: translate(0, 8px);
    }
  }

  /*section箭头指示引导*/
  @keyframes move-left-to-right {
    0%,
    30% {
      opacity: 0;
      transform: translate(-3px, 0);
    }

    60% {
      opacity: 1;
      transform: translate(0, 0);
    }

    100% {
      opacity: 0;
      transform: translate(3px, 0);
    }
  }

  @keyframes animation-aliyun {
    0% {
      transform: translate(0, 0);
    }

    100% {
      transform: translate(0, 105px);
    }
  }

  @keyframes animation-ucloud {
    0% {
      transform: translate(0, 0);
    }

    100% {
      transform: translate(0, 158px);
    }
  }

  @keyframes animation-amazon {
    0% {
      transform: translate(0, 0);
    }

    100% {
      transform: translate(0, 76px);
    }
  }

  @keyframes animation-azure {
    0% {
      transform: translate(0, 0);
    }

    100% {
      transform: translate(0, 145px);
    }
  }

  @keyframes animation-qcloud {
    0% {
      transform: translate(0, 0);
    }

    100% {
      transform: translate(0, 68px);
    }
  }
}

body {
  color: #fff;
  min-width: 1280px;
}

.index {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  box-sizing: border-box;
  /* .container */
}

.index .container {
  position: relative;
  height: 100%;
  padding-top: 1px;
  /*解决子元素margin-top溢出的问题*/
  z-index: 1000;
  /* .header */
  /*产品名称、团队数量及进入按钮水平居中,距顶部固定百分比*/
}

.index .container .header {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  z-index: 10;
  /* .header-nav */
}

.index .container .header .logo {
  width: 132px;
  height: 40px;
  background: url("../images/index/logo.png");
  background-size: contain;
  margin: 10px 0 0 23px;
  cursor: pointer;
  float: left;
}

.index .container .header .button-action-wrap {
  width: 150px;
  height: 60px;
  float: right;
  margin: 0 23px;
}

.index .container .header .button-action-wrap .button {
  width: 70px;
  height: 30px;
  line-height: 30px;
  margin-left: 5px;
  margin-top: 15px;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
  float: left;
  cursor: pointer;
}

.index .container .header .button-action-wrap .button.login {
  background: #46c017;
}

.index .container .header .button-action-wrap .button.register {
  background: #439fe0;
}

.index .container .header .header-nav {
  height: 60px;
  float: right;
  text-align: center;
  /* .nav-item-wrap */
}

.index .container .header .header-nav .nav-item-wrap {
  width: 150px;
  height: 32px;
  float: left;
  position: relative;
}

.index .container .header .header-nav .nav-item-wrap .nav-item-text {
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: #fff;
  border-radius: 2px 2px 0 0;
}

.index .container .header .header-nav .nav-item-wrap ul.nav-item-list {
  width: 100%;
  list-style: none;
  position: absolute;
  top: 46px;
  background-color: #00a0e9;
  border-radius: 0 0 2px 2px;
  display: none;
}

.index .container .header .header-nav .nav-item-wrap ul.nav-item-list li {
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}

.index .container .header .header-nav .nav-item-wrap ul.nav-item-list li:hover {
  background-color: #33b3ed;
}

.index .container .header .header-nav .nav-item-wrap:hover .nav-item-text {
  background-color: #00a0e9;
}

.index .container .header .header-nav .nav-item-wrap:hover ul.nav-item-list {
  display: block;
}

.index .container .banner-wrap {
  height: 100%;
}

.index .container .banner-wrap .banner-item-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 10000px;
}

.index .container .banner-wrap .banner-item-wrap.on {
  left: 0;
}

.index .container .banner-wrap .banner-item-wrap.dbAudit {
  background: url("../images/index/dbaudit-banner-bg.png") no-repeat;
  background-size: cover;
}

.index .container .banner-wrap .banner-item-wrap.dbAudit .banner-content-wrap {
  background: url("../images/index/dbAudit-banner-icon.png") 620px 40px
    no-repeat;
}

.index .container .banner-wrap .banner-item-wrap.banner-remote-office {
  background: url("../images/index/remote-b-bg.png") no-repeat;
  background-size: cover;
}

.index .container .banner-wrap .banner-item-wrap.banner-gj {
  background: url("../images/index/gj-bg.png") no-repeat;
  background-size: cover;
}
.index .container .banner-wrap .banner-item-wrap.v7 {
  background: url("../images/index/v7-banner.png") no-repeat;
  background-size: cover;
  position: relative;
  display: block;
}
.index .container .banner-wrap .banner-item-wrap.v7 .v7-title {
  width: 646px;
  height: 422px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -231px;
  margin-left: -323px;
  background: url("../images/index/v7-banner-title.png") no-repeat;
  background-size: cover;
}
.index
  .container
  .banner-wrap
  .banner-item-wrap.banner-gj
  .banner-content-wrap {
  background: url("../images/index/gj-icon.png") 499px 0 no-repeat;
}

.index .container .banner-wrap .banner-item-wrap .banner-content-wrap {
  width: 100%;
  max-width: 1342px;
  margin: 140px auto 0 auto;
  overflow: hidden;
  height: 490px;
}

.index .container .banner-wrap .banner-item-wrap.fortress .banner-content-wrap {
  max-width: 1160px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap
  .banner-content-wrap
  .text-wrap {
  margin-top: 25px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap
  .banner-content-wrap
  .text-wrap
  .title-text {
  font-size: 50px;
  width: 438px;
  line-height: 110px;
  font-weight: normal;
  color: #fff;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.banner-gj
  .banner-content-wrap
  .text-wrap
  .sub-title {
  color: #c0dcff;
  font-size: 24px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.dbAudit
  .banner-content-wrap
  .text-wrap
  .sub-title {
  color: #00b5e6;
  font-size: 24px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.banner-gj
  .banner-content-wrap
  .text-wrap
  .sub-slogan {
  text-align: left;
  line-height: 36px;
  color: #a7c2ef;
  font-size: 14px;
  border-radius: 5px;
  margin-top: 45px;
  margin-bottom: 25px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.dbAudit
  .banner-content-wrap
  .text-wrap
  .sub-slogan {
  text-align: left;
  line-height: 36px;
  color: #a6adcd;
  font-size: 14px;
  border-radius: 5px;
  margin-top: 45px;
  margin-bottom: 25px;
}

.index .container .banner-wrap .banner-item-wrap .banner-content-wrap .chosen {
  color: #a7c2ef;
  margin-top: 20px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.fortress
  .banner-content-wrap
  .chosen {
  color: #8693a3;
  margin-top: 20px;
}

.index .container .banner-wrap .banner-item-wrap .text-wrap .btns {
  overflow: hidden;
  /* .btn */
}

.index .container .banner-wrap .banner-item-wrap .text-wrap .btns input {
  width: 250px;
  height: 52px;
  line-height: 48px;
  font-size: 18px;
  color: #666;
  padding: 0 10px;
  border: none;
  border-radius: 2px 0 0 2px;
  float: left;
}

.index .container .banner-wrap .banner-item-wrap .text-wrap .btns .btn {
  width: 180px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  border: none;
  border-radius: 3px 0 0 3px;
  float: left;
}

.index .container .banner-wrap .banner-item-wrap .text-wrap .btns .btn.reg {
  width: 126px;
  border-radius: 0 3px 3px 0;
  background-color: #03a9f4;
}

.index .container .banner-wrap .banner-item-wrap .text-wrap .btns .btn.demo {
  width: 150px;
  margin-left: 12px;
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: border-box;
  line-height: 50px;
}

.index .container .banner-wrap .banner-item-wrap.data-ops {
  background: url("../images/index/data-ops-bg.png") no-repeat;
  background-size: cover;
}

.index .container .banner-wrap .banner-item-wrap.data-ops .banner-content-wrap {
  background: url("../images/index/data-ops-banner-right.png") 690px 30px
    no-repeat;
}

.index .container .banner-wrap .banner-item-wrap.data-ops .banner-content-wrap {
  max-width: 1160px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.data-ops
  .banner-content-wrap
  .text-wrap {
  max-width: 1160px;
}

.index .container .banner-wrap .banner-item-wrap.data-ops .title-data-ops {
  width: 570px;
  font-size: 38px;
  color: #ffffff;
  line-height: 56px;
  margin-bottom: 32px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.data-ops
  .banner-content-wrap
  .text-wrap
  .sub-data-ops {
  text-align: left;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 32px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.data-ops
  .banner-content-wrap
  .text-wrap
  .sub-data-ops
  > span {
  color: #ffffff;
}

.index .container .banner-wrap .banner-item-wrap.remote-ops {
  background: url("../images/index/remote-ops-bg.png") no-repeat;
  background-size: cover;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.remote-ops
  .banner-content-wrap {
  background: url("../images/index/remote-ops-banner-right.png") 690px 0px
    no-repeat;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.remote-ops
  .banner-content-wrap {
  max-width: 1160px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.remote-ops
  .banner-content-wrap
  .text-wrap {
  max-width: 1160px;
}

.index .container .banner-wrap .banner-item-wrap.remote-ops .title-remote-ops {
  width: 570px;
  font-size: 38px;
  color: #ffffff;
  line-height: 56px;
  margin-bottom: 32px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.remote-ops
  .banner-content-wrap
  .text-wrap
  .sub-remote-ops {
  text-align: left;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 32px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.remote-ops
  .banner-content-wrap
  .text-wrap
  .sub-remote-ops
  > span {
  color: #ffffff;
}

.index .container .banner-wrap .banner-item-wrap.unify-ops {
  background: url("../images/index/unify-ops-bg.png") no-repeat;
  background-size: cover;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.unify-ops
  .banner-content-wrap {
  background: url("../images/index/unify-ops-banner-right.png") 655px 40px
    no-repeat;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.unify-ops
  .banner-content-wrap {
  max-width: 1160px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.unify-ops
  .banner-content-wrap
  .text-wrap {
  max-width: 1160px;
}

.index .container .banner-wrap .banner-item-wrap.unify-ops .title-unify-ops {
  width: 562px;
  font-size: 38px;
  color: #ffffff;
  line-height: 56px;
  margin-bottom: 32px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.unify-ops
  .banner-content-wrap
  .text-wrap
  .sub-unify-ops {
  text-align: left;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 32px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.unify-ops
  .banner-content-wrap
  .text-wrap
  .sub-unify-ops
  > span {
  color: #ffffff;
}

.index .container .banner-wrap .banner-item-wrap.fortress {
  background: url("../images/index/fortress-bg.png") no-repeat;
  background-size: cover;
}

/* 新年活动 */
.index .container .banner-wrap .banner-item-wrap.new-year {
  background: url("../images/index/2021-new-year-banner.jpg") no-repeat center;
  background-size: contain;
  background-color: #ce0000;
}

/* 招聘 */
.index .container .banner-wrap .banner-item-wrap.job {
  background: url("../images/index/zhaopinbanner_bg.jpg") no-repeat center;
  background-size: cover;
}

.index .container .banner-wrap .banner-item-wrap.job > a {
  display: block;
  width: 100%;
  height: 700px;
}

.index .container .banner-wrap .banner-item-wrap.job > a > div {
  width: 1100px;
  height: 550px;
  background: url("../images/index/zhaopinbanner_p01.png") no-repeat center
    bottom;
  position: relative;
  margin: 150px auto 0;
}

.index .container .banner-wrap .banner-item-wrap.job > a > div > span {
  width: 140px;
  height: 40px;
  display: inline-block;
  color: #fff;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-left: 8px;
  position: absolute;
  left: 56px;
  bottom: 125px;
}

/* 云转售 */
.index .container .banner-wrap .banner-item-wrap.cloud-resale {
  background: url("../images/index/cloud-resale-banner-bg.png") no-repeat center;
  background-size: cover;
}

.index .container .banner-wrap .cloud-resale .cloud-resale-content {
  position: relative;
  width: 1280px;
  margin: 0 auto;
  height: 100%;
}

.index
  .container
  .banner-wrap
  .cloud-resale
  .cloud-resale-content
  .cloud-resale-left {
  padding-top: 185px;
  z-index: 1;
}

.index
  .container
  .banner-wrap
  .cloud-resale
  .cloud-resale-content
  .cloud-resale-right {
  position: absolute;
  top: 60px;
  right: 0;
}

.index
  .container
  .banner-wrap
  .cloud-resale
  .cloud-resale-content
  .cloud-resale-left
  > h2 {
  font-size: 38px;
  color: #ffffff;
  height: 56px;
  line-height: 56px;
}

.index
  .container
  .banner-wrap
  .cloud-resale
  .cloud-resale-content
  .cloud-resale-left
  > p {
  width: 646px;
  height: 100px;
  font-size: 16px;
  color: #ffffff;
  line-height: 32px;
  margin: 32px 0 64px;
}

.index
  .container
  .banner-wrap
  .cloud-resale
  .cloud-resale-content
  .cloud-resale-left
  .goto-consulting-customer-service {
  display: block;
  width: 240px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background: #03a9f4;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  border: none;
  cursor: pointer;
}

.index
  .container
  .banner-wrap
  .cloud-resale
  .cloud-resale-content
  .cloud-resale-left
  .goto-cloud-resale-detail {
  width: 190px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  margin-left: 32px;
}

/* HA集群服务 */
.index .container .banner-wrap .banner-item-wrap.HA {
  background: url("../images/index/HA-bg.png") no-repeat center;
  background-size: cover;
}

.index .container .banner-wrap .banner-item-wrap.HA .banner-content-wrap {
  background: url("../images/index/HA-banner-img.png") 655px 0px no-repeat;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.HA
  .banner-content-wrap
  .text-wrap {
  margin-top: 0;
}

.index .container .banner-wrap .banner-item-wrap.HA .title-text {
  width: 560px !important;
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 32px;
}

.index .container .banner-wrap .banner-item-wrap.HA .sub-slogan {
  width: 560px;
  font-size: 16px;
  color: #ffffff;
  line-height: 32px;
}

.index .container .banner-wrap .banner-item-wrap.HA .btn {
  display: block;
  width: 240px;
  height: 52px;
  background: #ffffff;
  border-radius: 4px;
  color: #2a91ff;
  font-size: 16px;
  line-height: 52px;
  text-align: center;
  cursor: pointer;
}

.index .container .banner-wrap .banner-item-wrap.HA .goto-cloud-resale-detail {
  width: 190px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  margin-left: 32px;
}

.index .container .banner-wrap .banner-item-wrap.video-center {
  background: url("../images/index/video-center-bg.png") no-repeat;
  background-size: cover;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.video-center
  .banner-content-wrap {
  background: url("../images/index/vc-icon.png") 625px 0px no-repeat;
}

.index .container .banner-wrap .banner-item-wrap.video-center .sub-title {
  font-size: 24px;
  color: #aeb4f5;
  margin-top: 20px;
  margin-bottom: 30px;
}

.index .container .banner-wrap .banner-item-wrap.video-center .sub-slogan {
  font-size: 14px;
  color: #aeb4f5;
  line-height: 30px;
}

.index .container .banner-wrap .banner-item-wrap.video-center .btn {
  width: 190px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  margin-top: 30px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.banner-remote-office
  .banner-content-wrap {
  background: url("../images/index/remote-icon.png") 647px 30px no-repeat;
}

.index .container .banner-wrap .banner-item-wrap.fortress .banner-content-wrap {
  background: url("../images/index/fortress-icon.png") 610px -138px no-repeat;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap
  .banner-content-wrap
  .text-wrap {
  margin-top: 50px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.banner-remote-office
  .banner-content-wrap
  .text-wrap
  .title-text {
  font-size: 50px;
  width: 655px;
  line-height: 110px;
  font-weight: normal;
  color: #fff;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.fortress
  .banner-content-wrap
  .text-wrap
  .title-text {
  font-size: 50px;
  width: 438px;
  line-height: 110px;
  font-weight: normal;
  color: #fff;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.fortress
  .banner-content-wrap
  .text-wrap
  .title-line {
  height: 2px;
  width: 414px;
  background: url("../images/index/banner-line-f.png") 0 center repeat-y;
  margin-bottom: 10px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.fortress
  .banner-content-wrap
  .text-wrap
  .sub-title {
  color: #00f6ff;
  font-size: 24px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.banner-remote-office
  .banner-content-wrap
  .text-wrap
  .sub-slogan {
  text-align: left;
  line-height: 36px;
  color: #accdff;
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 25px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.fortress
  .banner-content-wrap
  .text-wrap
  .sub-slogan {
  text-align: left;
  line-height: 36px;
  color: #8693a3;
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 25px;
}

.index .container .banner-wrap .banner-item-wrap.live {
  background: url("../images/index/prelive-bg.png") no-repeat;
  background-size: cover;
}

.index .container .banner-wrap .banner-item-wrap.live > a {
  height: 100%;
  width: 100%;
  display: block;
}

.index .container .banner-wrap .banner-item-wrap.live > a img {
  display: block;
  margin: 0 auto;
}

.index .container .banner-wrap .banner-item-wrap.anniversary {
  background: url("../images/index/anniversary-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.index .container .banner-wrap .banner-item-wrap.anniversary div {
  width: 75%;
  margin: 0 auto;
}

.index .container .banner-wrap .banner-item-wrap.anniversary h2 {
  margin-top: 125px;
  font-size: 54px;
  line-height: 110px;
  font-weight: normal;
  margin-bottom: 40px;
}

.index .container .banner-wrap .banner-item-wrap.anniversary p {
  font-size: 20px;
  line-height: 48px;
}

.index .container .banner-wrap .banner-item-wrap.anniversary button {
  width: 270px;
  height: 55px;
  line-height: 55px;
  border-radius: 5px;
  color: #fff;
  background-color: #439fe0;
  text-align: center;
  border: none;
  font-size: 20px;
  margin-top: 70px;
}

.index .container .banner-wrap .banner-item-wrap.anniversary button > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/index/play-btn.png") no-repeat center;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -4px;
}

.index .container .banner-wrap .banner-item-wrap.itservice {
  background: url("../images/index/itservice-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  overflow: hidden;
  position: absolute;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.itservice
  .itservice-banner-content-wrap {
  background: url("../images/index/itservice-banner-right.png") 610px 50px
    no-repeat;
  max-width: 1160px;
  margin: 115px auto 0 auto;
  position: relative;
  right: 0;
}

.index .container .banner-wrap .banner-item-wrap.itservice .text-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 115px auto 0 auto;
  overflow: hidden;
  height: 490px;
}

.index .container .banner-wrap .banner-item-wrap.itservice .text-wrap p {
  font-size: 16px;
  color: #ffffff;
}

.index .container .banner-wrap .banner-item-wrap.itservice .text-wrap h2 {
  font-size: 40px;
  color: #ffffff;
  margin: 36px 0;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.itservice
  .text-wrap
  .right-text {
  text-align: right;
  margin-right: 47px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.itservice
  .text-wrap
  .more-info {
  margin: 32px 0;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap
  .text-wrap
  .btns
  .btn.customer {
  width: 180px;
  height: 52px;
  border-radius: 4px;
  background-color: #03a9f4;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap
  .text-wrap
  .btns
  .btn.engineer {
  margin-left: 10px;
  box-sizing: border-box;
  width: 180px;
  height: 52px;
  border-radius: 4px;
  border: 1px solid #ffffff;
}

.index .container .banner-wrap .banner-item-wrap.baolei-free {
  background: url("../images/index/baolei-free-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.baolei-free
  .baolei-free-banner-content-wrap {
  background: url("../images/index/baolei-free-banner-right.png") 548px -135px no-repeat;
  max-width: 1160px;
  margin: 115px auto 0 auto;
}

.index .container .banner-wrap .banner-item-wrap.baolei-free .text-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 115px auto 0 auto;
  overflow: hidden;
  height: 490px;
}

.index .container .banner-wrap .banner-item-wrap.baolei-free .text-wrap h2 {
  font-size: 36px;
  line-height: 56px;
  color: #ffffff;
  margin: 98px 0 64px 0;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.baolei-free
  .text-wrap
  h2
  span {
  font-size: 36px;
  line-height: 56px;
  color: #f3ff35;
}

.index .container .banner-wrap .banner-item-wrap.baolei-free .text-wrap .btns {
  display: flex;
  align-items: center;
  margin-top: 64px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.baolei-free
  .text-wrap
  .btns
  .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.baolei-free
  .text-wrap
  .btns
  .btn.download {
  width: 180px;
  height: 52px;
  border-radius: 4px;
  border: none;
  background-color: #ffffff;
  color: #00b8a9;
}
.index
  .container
  .banner-wrap
  .banner-item-wrap.baolei-free
  .text-wrap
  .btns
  .btn.consult {
  margin-left: 10px;
  width: 180px;
  height: 52px;
  border-radius: 4px;
  border: 1px solid #ffffff;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.baolei-free
  .text-wrap
  p.more-info {
  font-size: 16px;
  color: #ffffff;
  margin-top: 24px;
}

.index .container .banner-wrap .banner-item-wrap.fastit {
  background: url("../images/index/fastit-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.fastit
  .fastit-banner-content-wrap {
  background: url("../images/index/fastit-banner-right.png") 610px 0px no-repeat;
  max-width: 1160px;
  margin: 115px auto 0 auto;
}

.index .container .banner-wrap .banner-item-wrap.fastit .text-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 115px auto 0 auto;
  overflow: hidden;
  height: 490px;
}
.index .container .banner-wrap .banner-item-wrap.fastit .text-wrap h2 {
  font-size: 36px;
  line-height: 56px;
  color: #ffffff;
  margin: 98px 0 64px 0;
}

.index .container .banner-wrap .banner-item-wrap.fastit .text-wrap p.more-info {
  font-size: 16px;
  color: #ffffff;
  margin-top: 24px;
}

.index .container .banner-wrap .banner-item-wrap.fastit .text-wrap .btns {
  display: flex;
  align-items: center;
  margin-top: 64px;
}

.index .container .banner-wrap .banner-item-wrap.fastit .text-wrap .btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.fastit
  .text-wrap
  .btns
  .btn.download {
  width: 180px;
  height: 52px;
  border-radius: 4px;
  border: none;
  background-color: #46c017;
}
.index
  .container
  .banner-wrap
  .banner-item-wrap.fastit
  .text-wrap
  .btns
  .btn.consult {
  margin-left: 10px;
  width: 180px;
  height: 52px;
  border-radius: 4px;
  border: none;
  background-color: #439fe0;
}

.index .container .banner-wrap .banner-item-wrap.cloud-purchase {
  background: url("../images/index/cloud-purchase-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.cloud-purchase
  .banner-content-wrap {
  background: url("../images/index/cloud-purchase-banner-right.png") 536px 0px
    no-repeat;
  max-width: 1220px;
  margin: 74px auto 0 auto;
}

.index .container .banner-wrap .banner-item-wrap.cloud-purchase .text-wrap {
  width: 100%;
  max-width: 1160px;
  overflow: hidden;
  height: 490px;
  margin-top: 111px;
}
.index
  .container
  .banner-wrap
  .banner-item-wrap.cloud-purchase
  .text-wrap
  .title-text {
  font-size: 38px;
  line-height: 56px;
  width: 100%;
  color: #ffffff;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.cloud-purchase
  .banner-content-wrap
  .text-wrap
  .sub-slogan {
  text-align: left;
  line-height: 32px;
  color: #fff;
  font-size: 16px;
  margin-top: 32px;
  margin-bottom: 64px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.cloud-purchase
  .text-wrap
  .btns
  .btn.consult {
  width: 240px;
  height: 52px;
  border-radius: 4px;
  border: none;
  background-color: #439fe0;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.cloud-purchase
  .text-wrap
  .btns
  .btn.detail {
  width: 150px;
  margin-left: 12px;
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: border-box;
  line-height: 50px;
}

.index .container .banner-wrap .banner-item-wrap.credits {
  background: url("../images/index/credits-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}

.index .container .banner-wrap .banner-item-wrap.credits .banner-content-wrap {
  max-width: 1220px;
  margin: 74px auto 0;
  position: relative;
}
.index .container .banner-wrap .banner-item-wrap.credits img {
  width: 595px;
  height: 603px;
  position: absolute;
  right: 0;
  top: 0;
}

.index .container .banner-wrap .banner-item-wrap.credits .text-wrap {
  width: 100%;
  max-width: 1160px;
  overflow: hidden;
  height: 490px;
  margin-top: 111px;
}
.index
  .container
  .banner-wrap
  .banner-item-wrap.credits
  .text-wrap
  .title-text {
  font-size: 38px;
  line-height: 56px;
  width: 100%;
  color: #ffffff;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.credits
  .banner-content-wrap
  .text-wrap
  .sub-slogan {
  text-align: left;
  line-height: 32px;
  color: #fff;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.credits
  .banner-content-wrap
  .text-wrap
  .sub-text {
  text-align: left;
  line-height: 32px;
  color: #fff;
  font-size: 14px;
  margin-top: 16px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.credits
  .text-wrap
  .btns
  .btn.consult {
  width: 240px;
  height: 52px;
  border-radius: 4px;
  border: none;
  background-color: #439fe0;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.credits
  .text-wrap
  .btns
  .btn.detail {
  width: 150px;
  margin-left: 12px;
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: border-box;
  line-height: 50px;
}

.index .container .banner-wrap .banner-item-wrap.bigdata {
  background: url("../images/index/bigdata-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}

.index .container .banner-wrap .banner-item-wrap.bigdata .banner-content-wrap {
  max-width: 1220px;
  margin: 74px auto 0;
  position: relative;
}
.index .container .banner-wrap .banner-item-wrap.bigdata img {
  width: 595px;
  height: 603px;
  position: absolute;
  right: 0;
  top: 0;
}

.index .container .banner-wrap .banner-item-wrap.bigdata .text-wrap {
  width: 100%;
  max-width: 1160px;
  overflow: hidden;
  height: 490px;
  margin-top: 111px;
}
.index
  .container
  .banner-wrap
  .banner-item-wrap.bigdata
  .text-wrap
  .title-text {
  font-size: 38px;
  line-height: 56px;
  width: 100%;
  color: #ffffff;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.bigdata
  .banner-content-wrap
  .text-wrap
  .sub-slogan {
  text-align: left;
  line-height: 32px;
  color: #fff;
  font-size: 16px;
  margin-top: 32px;
  margin-bottom: 64px;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.bigdata
  .text-wrap
  .btns
  .btn.consult {
  width: 240px;
  height: 52px;
  border-radius: 4px;
  border: none;
  background-color: #439fe0;
}

.index
  .container
  .banner-wrap
  .banner-item-wrap.bigdata
  .text-wrap
  .btns
  .btn.detail {
  width: 150px;
  margin-left: 12px;
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: border-box;
  line-height: 50px;
}
.index .container .banner-wrap .banner-item-wrap.b36kr {
  background: url("../images/index/36kr-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: left;
}

.index .container .banner-wrap .banner-item-wrap.b36kr a {
  /* width: 75%;
    margin: 0 auto; */
  color: #fff;
}

.index .container .banner-wrap .banner-item-wrap.b36kr h2 {
  font-size: 38px;
  font-weight: normal;
  line-height: 50px;
  margin-bottom: 40px;
}

.index .container .banner-wrap .banner-item-wrap.b36kr p {
  font-size: 16px;
  margin-top: 5px;
}

.index .container .banner-wrap .banner-item-wrap.b36kr p span {
  font-size: 24px;
}

.index .container .banner-wrap .banner-item-wrap.b36kr .btn {
  display: inline-block;
  width: 180px;
  height: 52px;
  line-height: 52px;
  border-radius: 4px;
  color: #fff;
  background-color: #03a9f4;
  text-align: center;
  border: none;
  font-size: 20px;
  margin-top: 70px;
  vertical-align: middle;
  cursor: pointer;
  box-sizing: border-box;
}

.index .container .banner-wrap .banner-item-wrap.b36kr .btn.outline {
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-left: 10px;
}

.b36kr-content {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.b36kr-left {
  width: 740px;
  padding-top: 200px;
  margin-left: 0;
}

.b36kr-left img {
  margin-bottom: 10px;
}

.b36kr-right {
  position: absolute;
  right: -40px;
  top: 0;
}

.index .container .banner-wrap .lrSwitch {
  height: 10px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.index .container .banner-wrap .lrSwitch .lrSwitchPoint {
  width: 42px;
  height: 12px;
  margin: 0 3px;
  float: left;
  cursor: pointer;
}

.index .container .banner-wrap .lrSwitch .lrSwitchPoint .sw-btn {
  height: 4px;
  width: 34px;
  border-radius: 3px;
  background-color: #fff;
  margin-top: 5px;
  opacity: 0.5;
}

.index .container .banner-wrap .lrSwitch .lrSwitchPoint.on .sw-btn {
  opacity: 1;
}

.video-container {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.video-container .video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  opacity: 0.4;
  z-index: 0;
}

.video-container .video-center-div {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 32;
}

.video-container .video-center-div .video-js-box {
  position: relative;
  width: 100%;
  text-align: left;
  line-height: 0 !important;
  margin: 0;
  padding: 0 !important;
  border: none !important;
  float: left;
  /*
          ipad 上跳转过来视频无法直接播放
          会显示一个播放按钮 .vjs-big-play-button
          */
}

.video-container .video-center-div .video-js-box .vjs-big-play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.video-container .video-center-div .closer-handler {
  width: 67px;
  height: 67px;
  background: url(../images/videos/closer.png) no-repeat;
  position: absolute;
  top: 0;
  right: -70px;
  cursor: pointer;
}

.video-container .video-center-div .stop {
  background: url(../images/videos/ex-login-bg.png) repeat;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 33;
}

.video-container .video-center-div .init-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  cursor: pointer;
}

.video-container .video-center-div .stop .button .pause,
.video-container .video-center-div .stop .button .replay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 276px;
  height: 76px;
  margin: -38px 0 0 -138px;
  cursor: pointer;
  background-repeat: no-repeat;
  z-index: 35;
}

.video-container .video-center-div .stop .button .pause {
  background-image: url(../images/videos/continue-play.png);
}

.video-container .video-center-div .stop .button .pause:hover {
  background-image: url(../images/videos/continue-play-msover.png);
}

.video-container .video-center-div .stop .button .replay {
  background-image: url(../images/videos/replay.png);
}

.video-container .video-center-div .stop .button .replay:hover {
  background-image: url(../images/videos/replay-msover.png);
}

.video-container.playing {
  display: block;
}

/* .index */
.section {
  position: relative;
  width: 100%;
  height: 640px;
  background-color: #ffffff;
  overflow: hidden;
}

.section > .title {
  font-size: 36px;
  color: #333;
  line-height: 180px;
  text-align: center;
}

/* .section */
.section-1 {
  position: relative;
  /* .body */
  /* .actions */
}

.section-1 #action-title {
  position: absolute;
  top: 20px;
  line-height: 40px;
  width: 100%;
}

.section-1 .body {
  height: 300px;
  margin: 135px 0 0 5%;
  display: flex;
}

.section-1 .body > a > div {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  margin-right: 20px;
  flex: 0 0 240px;
  width: 240px;
  height: 365px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.section-1 .body > a > div:hover {
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
  transition: all 0.2s linear;
}

.section-1 .body .block-item > img {
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  flex: 0 0 140px;
}

.section-1 .body > a > div .b-title {
  font-size: 18px;
  color: #000;
  text-align: center;
  margin-bottom: 28px;
}

.section-1 .body > a > div .b-content {
  font-size: 14px;
  color: #888888;
  width: 212px;
  line-height: 26px;
  text-align: center;
}

.section-1 .body > a > div .b-button {
  color: #439fe0;
  position: absolute;
  bottom: 25px;
}

/* .section-1 */

.section-2 {
  background: url("../images/index/section-2-bg.png") no-repeat;
  background-size: cover;
}

.section-2 .title {
  color: #fff;
}

.section-2 .body {
  display: flex;
  justify-content: center;
  margin-left: 30px;
}

.section-2 .body > div:hover {
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}

.section-2 .body .block-item img {
  height: auto;
  width: 154px;
  margin-top: 55px;
  margin-bottom: 60px;
}

.section-2 .body > div {
  height: 376px;
  width: 325px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-right: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section-2 .body > div > a {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section-2 .body > div .b-title {
  font-size: 18px;
  color: #000;
  text-align: center;
  margin-bottom: 25px;
}

.section-2 .body > div .b-content {
  font-size: 14px;
  color: #888888;
  width: 270px;
  line-height: 26px;
  text-align: center;
}

.section-2 .body > div .b-foot {
  width: 100%;
  height: 46px;
  margin-top: 17px;
  border-top: 1px solid #e6e6e6;
  display: flex;
}

.section-2 .body > div .b-foot > a {
  color: #439fe0;
  width: 162px;
  height: 46px;
  line-height: 46px;
  display: inline-block;
  text-align: center;
}

.section-2 .body > div .b-foot > div {
  background-color: #e6e6e6;
  width: 1px;
  height: 46px;
  display: inline-block;
}

.section-2 .body > div .b-foot > a:hover {
  background-color: #ededed;
}

.section-3 {
  height: 710px;
}

.section-3 .body {
  display: flex;
  width: 1130px;
  flex-wrap: wrap;
  margin: 20px auto 20px;
}

.section-3 .body .p3-block {
  flex: 0 0 210px;
  height: 136px;
  margin-right: 20px;
  margin-bottom: 20px;
  transition: all 0.2s linear;
}

.section-3 .body .p3-block img {
  width: 100%;
  height: 100%;
}

.section-3 .body .p3-block:nth-child(5n) {
  margin-right: 0;
}

.section-3 .body .p3-block:hover {
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}

.section-4 {
  height: 212px;
  background: url("../images/index/section-4-bg.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-4 .title {
  margin-bottom: 0;
  color: #fff;
  padding: 0;
  line-height: 36px;
}

.section-4 .title > p > span {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 3px;
}

.section-4 .title .count-val i {
  width: 27px;
  height: 44px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -999em;
}

.section-4 .title .count-val.waitingNum i {
  -webkit-animation: num-init 0.5s linear infinite;
  animation: num-init 0.5s linear infinite;
}

.section-4 .title .count-val.waitingNum i:nth-child(2n + 1) {
  background-position-y: -486px;
  -webkit-animation-name: num-init-even;
  animation-name: num-init-even;
}

.section-4 .title .team-count-val i {
  background-image: url("../images/index/team-num.png");
}

.section-4 .title .host-count-val i {
  background-image: url("../images/index/host-num.png");
}

.section-logos {
  height: auto;
}

.logo-hd {
  color: #333;
  text-align: center;
}

.logo-hd > span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 50px;
  font-size: 16px;
}

.logo-hd > span:last-child {
  margin-right: 0;
}

.logo-hd > span.active {
  color: #439fe0;
}

.logo-table {
  width: 1266px;
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.logo-table > div {
  flex: 0 0 210px;
  height: 108px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-case {
  width: 100%;
  height: 20px;
  line-height: 20px;
  margin-top: 36px;
  text-align: center;
  color: #439fe0 !important;
  display: block;
  margin-bottom: 40px;
  font-size: 16px;
}

.foot {
  height: 320px;
  background-color: #272729;
  padding-top: 30px;
  /* .links */
  /* .copyright */
  /* .credit */
}

.foot .links {
  width: 1080px;
  height: 240px;
  margin: 0 auto;
  font-size: 14px;
  /* padding-left: 156px; */
  /* .link-list */
}

.foot .links .link-list {
  margin-top: 6px;
}

.foot .links .link-list a {
  display: block;
  color: #cccccd;
  font-size: 12px;
  line-height: 30px;
}

.foot .links .link-block {
  width: 140px;
  float: left;
}

.foot .links .link-block.solution {
  width: 160px;
}
.foot .links .link-block.introduce,
.foot .links .link-block.document,
.foot .links .link-block.about {
  width: 130px;
}

.foot .links .link-block .title {
  color: #fff;
  line-height: 25px;
  height: 50px;
}

.foot .links .link-block.wechat {
  width: 150px;
  text-align: center;
}

.foot .links .link-block.wechat .img {
  width: 100px;
  height: 100px;
  background: url("/images/qrCode100.jpg");
  margin: 15px auto;
}

.foot .links .link-block.video {
  text-align: center;
  margin-left: 15px;
}

.foot .links .link-block.video .img {
  width: 100px;
  height: 100px;
  background: url("/images/w-video100.png");
  margin: 15px auto;
}

.foot .links .link-block.douyin {
  text-align: center;
  margin-left: 15px;
}

.foot .links .link-block.douyin .img {
  width: 100px;
  height: 100px;
  background: url("/images/douyin100.png");
  margin: 15px auto;
}

.foot .copyright {
  line-height: 40px;
  height: 40px;
  text-align: center;
  color: #cccccc;
  font-size: 12px;
}

.foot .copyright a {
  color: #cccccc;
  font-size: 12px;
}

.foot .credit {
  margin: 8px auto;
  width: 370px;
}

.foot .credit > a {
  display: inline-block;
  width: 74px;
  height: 20px;
  margin-left: 12px;
  vertical-align: middle;
}

.foot .credit > a.szcert {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../images/index/credit/credit-szcent.png");
  background-size: 74px;
}

.foot .credit > a.verify {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../images/index/credit/credit-verify.png");
  background-size: 74px;
}

.foot .credit > a.szcredit {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../images/index/credit/credit-szcredit.png");
  background-size: 74px;
}

.foot .credit > a.miitbeian {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../images/index/credit/credit-miitbeian.png");
  background-size: 74px;
}

.section-case-banner {
  height: auto;
}

.case-banner {
  width: 1262px;
  margin: 0 auto;
}

.case-banner-hd {
  height: 108px;
}

.case-banner-tab {
  height: 100%;
  width: 248px;
  border: 2px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  border-right-width: 0px;
  margin-left: -2px;
  text-align: center;
  line-height: 108px;
  cursor: pointer;
  position: relative;
}

.case-banner-tab:last-child,
.case-banner-tab.active {
  border-right-width: 2px;
}

.case-banner-tab.active + div {
  border-left: 0;
}

.case-banner-tab.active {
  border-color: #439fe0;
}

.case-banner-tab.active:before {
  content: "";
  position: absolute;
  border-top: 10px solid #439fe0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  left: 118px;
  bottom: -10px;
}

.case-banner-tab img {
  display: inline-block;
  vertical-align: middle;
}

.case-banner-tab:after {
  display: inline-block;
  content: "";
}

.case-banner-bd {
  margin-left: -4px;
  margin-top: 30px;
  border: 1px solid #ddd;
  width: 100%;
  height: 560px;
  position: relative;
}

.case-banner-arrow {
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 30px;
  background: #ddd no-repeat center;
  top: 250px;
  cursor: pointer;
}

.case-banner-arrow.l {
  background-image: url(../images/index/case/arrow-l.png);
  background-position-x: 23px;
  left: -30px;
}

.case-banner-arrow.r {
  background-image: url(../images/index/case/arrow-r.png);
  background-position-x: 27px;
  right: -30px;
}

.case-banner-content-wrap {
  position: absolute;
  overflow: hidden;
  left: 60px;
  top: 60px;
  bottom: 60px;
  right: 60px;
}

.case-banner-content {
  position: absolute;
  left: 100000px;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.case-banner-content.active {
  left: 0;
}

.case-banner-content > img,
.case-banner-content > div {
  display: inline-block;
  vertical-align: middle;
}

.case-banner-content > img {
  width: 572px;
  height: 440px;
}

.case-banner-content > div {
  width: 518px;
  color: #333;
  margin-left: 45px;
  font-size: 16px;
}

.case-banner-content h4 {
  font-size: 24px;
  margin-top: 60px;
}

.case-banner-content p {
  margin-top: 20px;
  line-height: 1.6em;
}

.case-banner-content ul {
  margin-top: 20px;
  padding-top: 5px;
  width: 100%;
  border-top: 1px solid #ddd;
}

.case-banner-content ul li {
  margin-top: 15px;
}

.case-banner-content ul li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 8px;
  width: 8px;
  border-radius: 5px;
  background: #439fe0;
  margin-right: 15px;
}

.case-banner-content a {
  text-align: left;
  margin-top: 55px;
}

.section-aboutus {
  text-align: center;
}

.section-productVideo {
  text-align: center;
  height: 600px;
}

.video-block {
  display: inline-block;
  margin-right: 25px;
  width: 400px;
  text-align: center;
  color: #333;
}

.video-block:last-child {
  margin-right: 0;
}

.video-block img {
  width: 100%;
  cursor: pointer;
}

.video-block p {
  margin-top: 20px;
}

/* .foot */
/*屏幕宽度在1280及以下*/
@media screen and (max-width: 1900px) {
  .section-4 .body .text-list .text-item.desc p {
    line-height: 40px;
  }
}

/*屏幕宽度在1024及以下*/
@media screen and (max-width: 1540px) {
  .index
    .container
    .banner-wrap
    .banner-item-wrap.banner-gj
    .banner-content-wrap {
    background: url("../images/index/gj-icon.png") 419px 0 no-repeat;
  }

  .index .container .banner-wrap .banner-item-wrap .banner-content-wrap {
    width: 100%;
    max-width: 1260px;
    margin: 140px auto 0 auto;
    overflow: hidden;
    height: 490px;
  }

  #banner-content-wrap-fortress {
    max-width: 1220px;
  }

  .index
    .container
    .banner-wrap
    .banner-item-wrap.fortress
    .banner-content-wrap {
    background: url("../images/index/fortress-icon.png") 560px -138px no-repeat;
  }
}

/*屏幕宽度在1024及以下*/
@media screen and (max-width: 1280px) {
  .index
    .container
    .banner-wrap
    .banner-item-wrap.banner-gj
    .banner-content-wrap {
    background: url("../images/index/gj-icon.png") 399px 0 no-repeat;
  }

  .index
    .container
    .banner-wrap
    .banner-item-wrap.fortress
    .banner-content-wrap {
    background: url("../images/index/fortress-icon.png") 540px -138px no-repeat;
  }

  #banner-content-wrap-fortress {
    max-width: 1180px;
  }

  .index .container .banner-wrap .banner-item-wrap .banner-content-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 140px auto 0 auto;
    overflow: hidden;
    height: 490px;
  }
}
